home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #2 / CKSPCV32.BIN / movies / clubroom.dir / 00191_Script_TV Channel Button < prev    next >
Text File  |  1995-04-03  |  456b  |  22 lines

  1. on mouseDown
  2.   global gSButton
  3.   
  4.   set myCast = the castNum of sprite gSButton
  5.   set the castNum of  sprite gSButton to myCast + 1
  6.   updateStage
  7. end
  8.  
  9. on mouseUp
  10.   global gCurrentButton, gSButton
  11.   
  12.   set gCurrentButton = 0
  13.   set the visible of sprite gSButton = false
  14.   set the puppet of sprite gSButton = false
  15.   StopSound
  16.   -- turn off the movie
  17.   set the visible of sprite 1 to false
  18.   updateStage
  19.   
  20.   
  21.   go to frame marker(0)
  22. end